forked from TheStanfordDaily/stanforddaily
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
58 lines (58 loc) · 1.62 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module.exports = {
env: {
es6: true,
node: true,
browser: true,
},
extends: [
"airbnb",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint",
"prettier/babel",
"prettier/react",
],
plugins: ["@typescript-eslint", "babel", "prettier", "react", "emotion"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
},
settings: {
react: {
version: "detect",
},
"import/resolver": {
"babel-module": require("./module-resolver-config"),
},
},
rules: {
"prettier/prettier": "error",
"import/prefer-default-export": "off",
"react/prop-types": ["error", { skipUndeclared: true }],
"react/destructuring-assignment": "off",
"react/jsx-filename-extension": ["error", { extensions: [".jsx", ".tsx"] }],
"react/jsx-props-no-spreading": "off",
"emotion/syntax-preference": ["error", "object"],
"@typescript-eslint/explicit-function-return-type": [
"error",
{ allowExpressions: true, allowTypedFunctionExpressions: true },
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-interface": "warn",
"jsx-a11y/anchor-is-valid": "off",
"no-else-return": "off",
"no-underscore-dangle": "off",
// `console`s will be removed by `babel-plugin-transform-remove-console` in production.
"no-console": "off",
},
};