UNPKG
form-ajax
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Submitting a form with AJAX
github.com/lBodia/Form-Ajax
lBodia/Form-Ajax
form-ajax
/
.eslintrc.js
21 lines
(20 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports
=
{
env:
{
browser:
true
,
es6:
true
},
extends:
[
'standard'
],
globals:
{
Atomics:
'readonly'
,
SharedArrayBuffer:
'readonly'
},
parserOptions:
{
ecmaVersion:
2018
,
sourceType:
'module'
},
rules:
{
semi:
[
2
,
"always"
], } }
;