Skip to content

Commit

Permalink
First commit - extension boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
fersirni committed Jan 18, 2023
1 parent e17348c commit cd5c576
Show file tree
Hide file tree
Showing 45 changed files with 4,143 additions and 0 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 cd5c576

Please sign in to comment.