Skip to content

Commit 7a5e19a

Browse files
committed
Chore: Fix ESLint ignore patterns
1 parent 84fa9cd commit 7a5e19a

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.eslintignore

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
node_modules
2-
examples/*/styleguide
3-
lib
4-
coverage
5-
travis_phantomjs
1+
examples/*/styleguide/*
2+
lib/*
3+
coverage/*
4+
travis_phantomjs/*

examples/basic/lib/components/WrappedButton/WrappedButton.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import React, { Component, PropTypes } from 'react';
2-
import s from './WrappedButton.css';
3-
42

53
/**
64
* A button wrapped by a Decorator/Enhancer

scripts/schemas/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

3-
// If you want to access any of these options in React, don’t forget to update CLIENT_CONFIG_OPTIONS array in loaders/styleguide-loader.js
3+
// If you want to access any of these options in React, don’t forget to update CLIENT_CONFIG_OPTIONS array
4+
// in loaders/styleguide-loader.js
45

56
const fs = require('fs');
67
const path = require('path');

0 commit comments

Comments
 (0)