UNPKG

450 BJavaScriptView Raw
1//
2// http://jscs.info/
3//
4module.exports = {
5 // Disables style checking for specified paths declared with glob patterns.
6 'excludeFiles': [
7 'node_modules/**'
8 ],
9 // Attempts to parse your code as ES6+, JSX, and Flow using the babel-jscs package as the parser.
10 // Please note that this is experimental, and will improve over time.
11 'esnext': true,
12
13 'disallowMixedSpacesAndTabs': true,
14 'validateIndentation': 4,
15}