-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps(webpack): Implement webpack 5 (#332)
* wip * remove unencessary items * fix assets * remove unused package * fix lint js error * fix: css lint issue * update pack * remove text on header * update helper * fix lint Co-authored-by: Harshith Raj <[email protected]>
- Loading branch information
1 parent
78f7610
commit 44d47c1
Showing
11 changed files
with
15,780 additions
and
22,160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
module.exports = { | ||
extends: [ | ||
"standard", | ||
"prettier", | ||
"plugin:react/recommended", | ||
"plugin:jest/recommended", | ||
"plugin:prettier/recommended", | ||
], | ||
plugins: ["react", "standard", "jest"], | ||
env: { | ||
node: true, | ||
commonjs: true, | ||
browser: true, | ||
es6: true, | ||
"shared-node-browser": true, | ||
}, | ||
parser: "@babel/eslint-parser", | ||
parserOptions: { | ||
sourceType: "module", | ||
babelOptions: { | ||
configFile: "./babel.config.js", | ||
}, | ||
}, | ||
rules: { | ||
"max-len": ["warn", { code: 120 }], | ||
}, | ||
settings: { | ||
react: { | ||
version: "16.2", | ||
}, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"verbose": true, | ||
"delay": 2500 | ||
} |
Oops, something went wrong.