FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nativescript-angular/.eslintrc.json at master · NativeScript/nativescript-angular · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NativeScript
/
nativescript-angular
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
240
Star
1.2k
Code
Issues
294
Pull requests
2
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
nativescript-angular
/
.eslintrc.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
105 lines (102 loc) · 3.26 KB
Breadcrumbs
nativescript-angular
/
.eslintrc.json
Copy path
File metadata and controls
105 lines (102 loc) · 3.26 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"extends"
:
"
eslint:recommended
"
,
"parser"
:
"
babel-eslint
"
,
"plugins"
: [
"
react
"
],
"ecmaFeatures"
: {
},
"rules"
: {
"no-unexpected-multiline"
:
2
,
"block-scoped-var"
:
2
,
"complexity"
: [
1
,
15
],
"consistent-return"
:
2
,
"curly"
:
2
,
"default-case"
:
2
,
"dot-location"
: [
2
,
"
property
"
],
"eqeqeq"
: [
2
,
"
smart
"
],
"no-alert"
:
2
,
"no-caller"
:
2
,
"no-else-return"
:
2
,
"no-eval"
:
2
,
"no-implied-eval"
:
2
,
"no-extend-native"
:
2
,
"no-extra-bind"
:
2
,
"no-implicit-coercion"
:
2
,
"no-invalid-this"
:
2
,
"no-lone-blocks"
:
2
,
"no-loop-func"
:
2
,
"no-magic-numbers"
: [
2
, {
"ignore"
: [
0
,
-1
] }],
"no-multi-spaces"
:
2
,
"no-native-reassign"
:
2
,
"no-new"
:
2
,
"no-param-reassign"
:
2
,
"no-return-assign"
:
2
,
"no-sequences"
:
2
,
"no-useless-call"
:
2
,
"array-bracket-spacing"
: [
2
,
"
never
"
],
"brace-style"
: [
2
,
"
1tbs
"
, {
"allowSingleLine"
:
true
}],
"camelcase"
:
2
,
"comma-style"
:
2
,
"consistent-this"
: [
2
,
"
that
"
],
"indent"
:
2
,
"jsx-quotes"
:
2
,
"key-spacing"
: [
2
, {
"beforeColon"
:
false
,
"afterColon"
:
true
}],
"linebreak-style"
: [
2
,
"
unix
"
],
"lines-around-comment"
:
2
,
"max-params"
: [
2
,
4
],
"no-multiple-empty-lines"
: [
2
, {
"max"
:
2
}],
"no-nested-ternary"
:
2
,
"no-spaced-func"
:
2
,
"no-trailing-spaces"
:
2
,
"object-curly-spacing"
:
2
,
"semi-spacing"
:
2
,
"space-after-keywords"
:
2
,
"space-before-blocks"
:
2
,
"space-before-function-paren"
: [
2
,
"
never
"
],
"space-before-keywords"
: [
2
,
"
always
"
],
"space-infix-ops"
: [
2
, {
"int32Hint"
:
false
} ],
"arrow-body-style"
:
2
,
"no-arrow-condition"
:
2
,
"no-class-assign"
:
2
,
"no-const-assign"
:
2
,
"no-dupe-class-members"
:
2
,
"no-this-before-super"
:
2
,
"no-var"
:
2
,
"prefer-template"
:
2
,
"react/display-name"
:
0
,
"react/forbid-prop-types"
:
2
,
"react/jsx-boolean-value"
:
2
,
"react/jsx-closing-bracket-location"
:
2
,
"react/jsx-curly-spacing"
:
2
,
"react/jsx-indent-props"
:
2
,
"react/jsx-key"
:
2
,
"react/jsx-max-props-per-line"
: [
2
, {
"maximum"
:
4
}],
"react/jsx-no-bind"
:
2
,
"react/jsx-no-duplicate-props"
:
2
,
"react/jsx-no-literals"
:
0
,
"react/jsx-no-undef"
:
2
,
"react/jsx-pascal-case"
:
2
,
"react/jsx-sort-prop-types"
:
2
,
"react/jsx-sort-props"
:
2
,
"react/jsx-uses-react"
:
2
,
"react/jsx-uses-vars"
:
2
,
"react/no-danger"
:
2
,
"react/no-did-mount-set-state"
:
2
,
"react/no-did-update-set-state"
:
2
,
"react/no-direct-mutation-state"
:
2
,
"react/no-multi-comp"
:
2
,
"react/no-set-state"
:
2
,
"react/no-unknown-property"
:
2
,
"react/prefer-es6-class"
:
2
,
"react/prop-types"
:
2
,
"react/react-in-jsx-scope"
:
2
,
"react/require-extension"
:
2
,
"react/self-closing-comp"
:
2
,
"react/sort-comp"
:
2
,
"react/wrap-multilines"
:
2
},
"env"
: {
"browser"
:
true
,
"node"
:
true
,
"jasmine"
:
true
}
}
Back
|
FazBrowse Home
|
New Git URL