forked from sheetjs/sheetjs
SheetJS
f335d310ac
- dateNF option for default date format override - general format renders undefined/null as empty string - ignore text elements when searching for decimal point - bubble negative sign to the front when format starts with text - fixes for eslint + closure - updated frac to 1.0.6 Issues: - fixes #10 h/t @adamgundy @SegFaultx64 @RichardCzechowski - fixes #15 h/t @wilg - fixes #25 h/t @dougschiller - fixes #26 h/t @rjmcguire
20 lines
398 B
Plaintext
20 lines
398 B
Plaintext
{
|
|
"env": { "shared-node-browser":true },
|
|
"globals": {},
|
|
"parserOptions": {
|
|
"ecmaVersion": 3,
|
|
},
|
|
"plugins": [ "html", "json" ],
|
|
"rules": {
|
|
"no-use-before-define": [ 1, {
|
|
"functions":false, "classes":true, "variables":false
|
|
}],
|
|
"no-bitwise": 0,
|
|
"curly": 0,
|
|
"comma-style": [ 2, "last" ],
|
|
"no-trailing-spaces": 2,
|
|
"semi": [ 2, "always" ],
|
|
"comma-dangle": [ 2, "never" ]
|
|
}
|
|
}
|