aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-07-06 21:47:04 +0200
committerNoah Loomans <noahloomans@gmail.com>2018-07-06 21:47:04 +0200
commit55a6e891c8d7f19dc9841bf097e66df2f00d0d5f (patch)
tree5e49f777be5a2164010b2087e90477652f34242c /.eslintrc
parentd49b651d0d894f58e0ebbcd4cf5f0777ec66ee21 (diff)
Add license notice to all missing files
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc b/.eslintrc
index dab636c..36ded27 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -6,12 +6,16 @@
"node": true,
"jest": true
},
+ "plugins":["notice"],
"rules": {
"react/jsx-filename-extension": "off",
"no-underscore-dangle": ["error", { "allow": ["_test", "__REDUX_DEVTOOLS_EXTENSION_COMPOSE__"] }],
"no-prototype-builtins": "off",
"react/forbid-prop-types": "off",
"react/prefer-stateless-function": "off",
- "import/prefer-default-export": "off"
+ "import/prefer-default-export": "off",
+ "notice/notice":["error", {
+ "templateFile": ".licence-template"
+ }]
}
}