UNPKG
@fuchsfox/eslint-config-ff
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
ESLint config of FUCHSFOX
github.com/fuchsfox/eslint-config-ff
fuchsfox/eslint-config-ff
@fuchsfox/eslint-config-ff
/
browser.js
10 lines
(9 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module.exports
=
{
extends:
[
'./lib/core.js'
,
'./lib/react.js'
,
'./lib/prettier.js'
],
env:
{
browser:
true
,
commonjs:
true
},
plugins:
[
'xss'
],
globals:
{
window:
true
, },
rules:
require('./lib/rules/xss')
, }
;