2020-05-13 16:03:44 +02:00
fix
2020-05-06 07:39:07 +02:00
fix
2020-05-06 07:32:58 +02:00
2020-04-06 11:56:05 +02:00
2020-05-07 19:16:22 +02:00
2020-05-13 16:03:44 +02:00
2020-04-06 11:56:05 +02:00
2020-04-06 11:56:05 +02:00
fix
2020-05-07 19:19:38 +02:00
2020-04-06 11:56:05 +02:00
2020-05-13 11:02:30 +02:00

Sapphirecode ESLint configuration

Javascript coding standard used by Sapphirecode

Installation

to install this module you have to add the following line to your .npmrc

@scode:registry=https://npm.scode.ovh

then install the module and eslint

npm i --save-dev @scode/eslint-ts eslint

then create a file named .eslintrc.js with the following contents.

it is a basic configuration, it can be customized to your preferences.

module.exports = {
  env: {
    commonjs: true,
    es6: true,
    node: true
  },
  extends: [
    '@scode/eslint-ts'
  ]
}

after that you can run eslint.

Description
No description provided
Readme 232 KiB
Languages
JavaScript 100%