forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 890 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "meteor",
"version": "0.0.1",
"description": "Used to apply Prettier and ESLint manually",
"repository": {
"type": "git",
"url": "git+https://github.com/meteor/meteor.git"
},
"author": "Filipe Névola",
"license": "MIT",
"bugs": {
"url": "https://github.com/meteor/meteor/issues"
},
"homepage": "https://github.com/meteor/meteor#readme",
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.3",
"@types/node": "^14.17.6"
},
"eslintConfig": {
"extends": [
"@quave/quave"
],
"rules": {
"global-require": "off",
"no-console": "off",
"camelcase": "warn",
"consistent-return": "off",
"quotes": "warn",
"no-shadow": [
"error",
{
"allow": ["resolve"]
}
],
"no-use-before-define": "warn",
"import/no-unresolved": "warn"
}
}
}