aboutsummaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'dox-sequence-diagram-ui/eslintrc.json')
-rw-r--r--dox-sequence-diagram-ui/eslintrc.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/dox-sequence-diagram-ui/eslintrc.json b/dox-sequence-diagram-ui/eslintrc.json
new file mode 100644
index 0000000000..b2a3f24aaa
--- /dev/null
+++ b/dox-sequence-diagram-ui/eslintrc.json
@@ -0,0 +1,32 @@
+{
+ "parserOptions": {
+ "ecmaVersion": 6,
+ "sourceType": "module",
+ "ecmaFeatures": {
+ "jsx": true
+ }
+ },
+ "env": {
+ "browser": true
+ },
+ "plugins": [
+ "react"
+ ],
+ "extends": [
+ "airbnb"
+ ],
+ "rules": {
+ "padded-blocks": 0,
+ "max-len": ["error", 160, 4],
+ "no-underscore-dangle": 0,
+ "global-require": 0,
+ "react/sort-comp": 0,
+ "new-cap": 0
+ },
+ "settings": {
+ "react": {
+ "pragma": "React",
+ "version": "0.14.8"
+ }
+ }
+}