6 changed files with 1884 additions and 20 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
module.exports = { |
||||
env: { |
||||
browser: true, |
||||
es2021: true, |
||||
}, |
||||
extends: [ |
||||
"plugin:react/recommended", |
||||
"airbnb", |
||||
"prettier", |
||||
"prettier/@typescript-eslint", |
||||
"prettier/react", |
||||
], |
||||
parser: "@typescript-eslint/parser", |
||||
parserOptions: { |
||||
ecmaFeatures: { |
||||
jsx: true, |
||||
}, |
||||
ecmaVersion: 12, |
||||
sourceType: "module", |
||||
}, |
||||
plugins: ["react", "@typescript-eslint"], |
||||
rules: { |
||||
"react/react-in-jsx-scope": "off", |
||||
"react/jsx-filename-extension": [1, { extensions: [".js", ".jsx", ".tsx"] }], |
||||
"react/jsx-props-no-spreading": "off", |
||||
}, |
||||
}; |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
# Ignore artifacts: |
||||
node_modules |
||||
out |
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
{ |
||||
"tabWidth": 2, |
||||
"useTabs": false |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue