UNPKG

446 BJavaScriptView Raw
1/* eslint sort-keys: ["error", "asc"], quote-props: ["error", "consistent"] */
2/* eslint-disable sort-keys */
3
4// These rules try to be as close as possible to base.js while omitting the language features that are not supported by the current active LTS version of node.
5// See https://github.com/nodejs/LTS and http://node.green/
6module.exports = {
7 env: {
8 node: true
9 },
10 parserOptions: {
11 sourceType: "script"
12 }
13};