Skip to content
This repository was archived by the owner on Aug 13, 2018. It is now read-only.

Commit 7fcfbd8

Browse files
committed
Merge branch 'esphen-eslint-and-travis'
2 parents e7fae0c + 7c6623b commit 7fcfbd8

File tree

6 files changed

+487
-1
lines changed

6 files changed

+487
-1
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
data/lib/

.eslintrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
// Extend Firefox Devtools ESLintrc
3+
"extends": "./.eslintrc.mozilla",
4+
"plugins": [
5+
"react",
6+
"mozilla"
7+
],
8+
"parserOptions": {
9+
"ecmaVersion": 6
10+
},
11+
"env": {
12+
"browser": true,
13+
"amd": true,
14+
"jquery": true
15+
},
16+
"globals": {
17+
"NetMonitorView": true,
18+
"Locale": true,
19+
"Options": true,
20+
21+
// Used in network-content-script
22+
"EVENTS": true,
23+
}
24+
}

0 commit comments

Comments
 (0)