mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-17 06:14:21 +01:00
20 lines
334 B
JavaScript
20 lines
334 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:eslint-plugin/recommended",
|
|
"plugin:node/recommended"
|
|
],
|
|
env: {
|
|
node: true
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ["tests/**/*.js"],
|
|
env: { mocha: true }
|
|
}
|
|
]
|
|
};
|