1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/.eslintrc

37 lines
614 B
Text
Raw Normal View History

2016-06-29 12:27:04 +02:00
rules:
2017-01-20 12:08:43 +01:00
linebreak-style:
- 2
- unix
quotes:
- 1 // While https://github.com/eslint/eslint/issues/9662#issuecomment-353958854 we don't enforce this
- single
2017-01-20 12:08:43 +01:00
no-console: 1
no-global-assign: 0
no-unsafe-negation: 0
react/prop-types: 0
2016-06-29 12:27:04 +02:00
parser: babel-eslint
plugins:
- react
- flowtype
2016-06-29 12:27:04 +02:00
env:
2017-01-20 12:08:43 +01:00
browser: true
commonjs: true
es6: true
overrides:
files: "*.test.js"
env:
mocha: true
2016-06-29 12:27:04 +02:00
extends:
- eslint:recommended
- plugin:flowtype/recommended
- plugin:react/recommended
- prettier
- prettier/flowtype
- prettier/react
2016-06-29 12:27:04 +02:00
parserOptions:
ecmaFeatures:
2017-01-20 12:08:43 +01:00
jsx: true