mirror of https://github.com/svaarala/duktape.git
Browse Source
* Update Node.js in Docker image to 16.x. * Include duk-g++ in CI. * Perf test .eslint files.pull/2484/head
Sami Vaarala
3 years ago
7 changed files with 35 additions and 6 deletions
@ -0,0 +1 @@ |
|||
/node_modules/ |
@ -0,0 +1,27 @@ |
|||
env: |
|||
browser: true |
|||
commonjs: true |
|||
es6: true |
|||
extends: 'eslint:recommended' |
|||
globals: |
|||
Atomics: readonly |
|||
SharedArrayBuffer: readonly |
|||
process: readonly |
|||
__dirname: readonly |
|||
Buffer: readonly |
|||
CBOR: readonly |
|||
print: writable |
|||
Duktape: readonly |
|||
parserOptions: |
|||
ecmaVersion: 2018 |
|||
rules: |
|||
strict: off |
|||
no-self-assign: off |
|||
no-unused-vars: off |
|||
no-empty: off |
|||
no-constant-condition: off |
|||
no-unreachable: off |
|||
no-tabs: error |
|||
no-control-regex: off |
|||
no-trailing-spaces: error |
|||
no-warning-comments: [ 1, { "terms": ["todo", "fixme", "xxx"], "location": "anywhere" } ] |
Loading…
Reference in new issue