mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 12:51:51 +03:00
24 lines
442 B
JavaScript
24 lines
442 B
JavaScript
module.exports = exports = {
|
|
"rules": {
|
|
"spaced-comment": 0,
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:import/errors",
|
|
"plugin:react/recommended",
|
|
],
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
},
|
|
"import/resolver": {
|
|
typescript: {} // this loads <rootdir>/tsconfig.json to eslint
|
|
},
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"plugins": ["import", "react-hooks"]
|
|
}
|