Files
ontime/server/.eslintrc
T
Carlos Valente 67ddcd8c68 Feat/table (#105)
* feat/table add react-table
* feat/table add protected table route
* feat/table upgrade dependencies
* feat/table support parsing of new properties

Co-authored-by: DeepSource Bot <bot@deepsource.io>
2022-04-09 22:05:56 +02:00

22 lines
360 B
Plaintext

{
"parserOptions": {
"sourceType": "module"
},
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:cypress/recommended"
],
"plugins": [],
"rules": {
"prettier/prettier": ["error", {
"endOfLine": "auto",
"singleQuote": true,
"printWidth": 100
}]
}
}