littlelink-server/.eslintrc
Techno Tim 84b1a800c7
feat(rewrite): Rewrote the whole thing in ReactJS 💅 (#22)
* feat(rewrite): Rewrote the whole thing in ReactJS 💅

* chore(docs): Updated
2021-08-25 19:16:09 -05:00

43 lines
935 B
Plaintext

{
"parser": "@babel/eslint-parser",
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"plugins": ["jsx","prettier"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"env": {
"jest": true,
"jasmine": true,
"node": true,
"browser": true,
"es6": true
},
"rules": {
"prettier/prettier":
["error", {
"singleQuote": true,
"jsxSingleQuote": false,
"arrowParens": "avoid",
"semi": true,
"trailingComma": "all",
"spaceAfterFunction": true
}],
"no-console": ["error", { "allow": ["warn", "error"] }],
"no-alert": "error",
"no-debugger": "error",
"prefer-const": "error",
"prefer-arrow-callback": "error",
"no-unused-vars": ["error", {"args": "none"}],
"react/prop-types": 0,
"react/no-unescaped-entities": 0
}
}