UNPKG

dsig

Version:

Digital Signature with OpenPGP

43 lines (35 loc) 1.35 kB
## ## DSIG -- Digital Signature with OpenPGP ## Copyright (c) 2015-2022 Dr. Ralf S. Engelschall <rse@engelschall.com> ## Licensed under LGPL 3.0 <https://spdx.org/licenses/LGPL-3.0-only> ## --- extends: - eslint:recommended - eslint-config-standard parserOptions: ecmaVersion: 12 sourceType: module ecmaFeatures: jsx: false env: browser: true node: true commonjs: true rules: # modified rules indent: [ "error", 4, { "SwitchCase": 1 } ] linebreak-style: [ "error", "unix" ] semi: [ "error", "never" ] operator-linebreak: [ "error", "after", { "overrides": { "&&": "before", "||": "before", ":": "before" } } ] brace-style: [ "error", "stroustrup", { "allowSingleLine": true } ] quotes: [ "error", "double" ] # disabled rules no-multi-spaces: off no-multiple-empty-lines: off key-spacing: off object-property-newline: off curly: off space-in-parens: off array-bracket-spacing: off no-useless-constructor: off