added input masks
This commit is contained in:
Vendored
+48
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"commonjs": true,
|
||||
"node": true
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 5
|
||||
},
|
||||
"rules": {
|
||||
"indent": [
|
||||
"error",
|
||||
"tab",
|
||||
{
|
||||
"SwitchCase": 1
|
||||
}
|
||||
],
|
||||
"linebreak-style": [
|
||||
"off"
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"double"
|
||||
],
|
||||
"semi": [
|
||||
"error",
|
||||
"always"
|
||||
],
|
||||
"no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
"vars": "all",
|
||||
"args": "none"
|
||||
}
|
||||
],
|
||||
"no-cond-assign": [
|
||||
"error",
|
||||
"except-parens"
|
||||
]
|
||||
},
|
||||
"globals": {
|
||||
"Inputmask": true,
|
||||
"jQuery": false,
|
||||
"define": false,
|
||||
"require": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user