Skip to content

Commit 1948d11

Browse files
committedApr 30, 2017
disable unused-vars lint
1 parent e62d07c commit 1948d11

File tree

6 files changed

+3
-8
lines changed

6 files changed

+3
-8
lines changed
 

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"modules": false
123123
}
124124
}
125-
],
125+
]
126126
],
127127
"plugins": [
128128
"transform-react-constant-elements",
@@ -166,6 +166,7 @@
166166
"import/no-named-as-default": 0,
167167
"quotes": 0,
168168
"no-console": 1,
169+
"no-unused-vars": 0,
169170
"no-debugger": 1,
170171
"no-var": 1,
171172
"semi": [

‎src/actions/collections.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint no-unused-vars: 0 */
2-
31
import * as ActionTypes from '../constants/actionTypes';
42
import _ from 'underscore';
53
import moment from 'moment';

‎src/actions/datafiles.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint no-unused-vars: 0 */
2-
31
import * as ActionTypes from '../constants/actionTypes';
42
import { validationError } from './utils';
53
import { get, put } from '../utils/fetch';

‎src/actions/pages.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint no-unused-vars: 0 */
21
import * as ActionTypes from '../constants/actionTypes';
32
import _ from 'underscore';
43
import { validationError } from '../actions/utils';

‎src/actions/staticfiles.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint no-unused-vars: 0 */
21
import * as ActionTypes from '../constants/actionTypes';
32
import _ from 'underscore';
43
import { get } from '../utils/fetch';

‎tools/buildHtml.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* eslint-disable no-console */
33

44
import fs from 'fs';
5-
import {chalkSuccess, chalkError, chalkWarning} from './chalkConfig';
5+
import {chalkSuccess, chalkError} from './chalkConfig';
66
import cheerio from 'cheerio';
77

88
fs.readFile('src/index.html', 'utf8', (readError, markup) => {

0 commit comments

Comments
 (0)
Please sign in to comment.