You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
/**
|
|
* @file Manages the root configuration settings for project wide eslint.
|
|
* @module eslint/root/configuration
|
|
* @see {@link https://eslint.org} for further information.
|
|
*/
|
|
|
|
module.exports = {
|
|
/**
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#specifying-environments}
|
|
*/
|
|
env: {},
|
|
|
|
/**
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#extending-configuration-files}
|
|
*/
|
|
extends: ['@prorenata/eslint-config-vue'],
|
|
|
|
/**
|
|
* You can define global variables here.
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#specifying-globals}
|
|
*/
|
|
globals: {},
|
|
|
|
/**
|
|
* Sometimes a more fine-controlled configuration is necessary, for example if the configuration
|
|
* for files within the same directory has to be different.
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#configuration-based-on-glob-patterns}
|
|
*/
|
|
overrides: [],
|
|
|
|
/**
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#specifying-parser-options}
|
|
*/
|
|
parserOptions: {},
|
|
|
|
/**
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#configuring-plugins}
|
|
*/
|
|
plugins: [],
|
|
|
|
/**
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy}
|
|
*/
|
|
root: true,
|
|
|
|
/**
|
|
* @see {@link https://eslint.org/docs/user-guide/configuring#configuring-rules}
|
|
*/
|
|
rules: {},
|
|
|
|
/**
|
|
* Webpack-literate module resolution plugin for eslint-plugin-import.
|
|
* @see {@link https://www.npmjs.com/package/eslint-import-resolver-webpack}
|
|
*/
|
|
settings: {},
|
|
};
|
|
|