mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
40 lines
890 B
JSON
40 lines
890 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|