Skip to content

Commit 6ae70ae

Browse files
authored
Merge pull request #292 from Lamden/dev-v3
Dev v3
2 parents c451a14 + 69634c5 commit 6ae70ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2693
-2019
lines changed

.eslintrc.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es2021": true,
5+
"webextensions": true,
6+
"node": true,
7+
"mocha": true
8+
},
9+
"extends": "eslint:recommended",
10+
"overrides": [
11+
],
12+
"parserOptions": {
13+
"ecmaVersion": "latest",
14+
"sourceType": "module"
15+
},
16+
"plugins": ["no-floating-promise"],
17+
"rules": {
18+
"require-await": 2,
19+
"no-floating-promise/no-floating-promise": 2
20+
}
21+
}

0 commit comments

Comments
 (0)