mirror of https://github.com/lukechilds/rollup.git
2 changed files with 27 additions and 26 deletions
@ -1,23 +1,24 @@ |
|||
{ |
|||
"root": true, |
|||
"rules": { |
|||
"indent": [ 2, "tab", { "SwitchCase": 1 } ], |
|||
"quotes": [ 2, "single" ], |
|||
"semi": [ 2, "always" ], |
|||
"space-after-keywords": [ 2, "always" ], |
|||
"space-before-blocks": [ 2, "always" ], |
|||
"space-before-function-paren": [ 2, "always" ], |
|||
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ], |
|||
"no-cond-assign": [ 0 ] |
|||
}, |
|||
"env": { |
|||
"es6": true, |
|||
"browser": true, |
|||
"mocha": true, |
|||
"node": true |
|||
}, |
|||
"extends": "eslint:recommended", |
|||
"ecmaFeatures": { |
|||
"modules": true |
|||
} |
|||
"root": true, |
|||
"rules": { |
|||
"indent": [ 2, "tab", { "SwitchCase": 1 } ], |
|||
"quotes": [ 2, "single" ], |
|||
"semi": [ 2, "always" ], |
|||
"space-after-keywords": [ 2, "always" ], |
|||
"space-before-blocks": [ 2, "always" ], |
|||
"space-before-function-paren": [ 2, "always" ], |
|||
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ], |
|||
"no-cond-assign": [ 0 ] |
|||
}, |
|||
"env": { |
|||
"es6": true, |
|||
"browser": true, |
|||
"mocha": true, |
|||
"node": true |
|||
}, |
|||
"extends": "eslint:recommended", |
|||
"parserOptions": { |
|||
"ecmaVersion": 6, |
|||
"sourceType": "module" |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue