Skip to content

Commit

Permalink
move to manifest version 3, changed bootstrap methodology, currently …
Browse files Browse the repository at this point in the history
…kinda works!
  • Loading branch information
sphinxrave committed Nov 16, 2024
1 parent fdd17ce commit d14b183
Show file tree
Hide file tree
Showing 91 changed files with 4,533 additions and 3,239 deletions.
28 changes: 28 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"react/react-in-jsx-scope": "off"
},
"globals": {
"chrome": "readonly"
},
"ignorePatterns": ["watch.js", "dist/**"]
}
Loading

0 comments on commit d14b183

Please sign in to comment.