eslint-config-bananass
Version:
ESLint Config for Bananass Framework.🍌
24 lines (21 loc) • 966 B
JavaScript
/**
* @fileoverview This file follows:
*
* - The order of the rules listed in the 'Layout & Formatting' section on eslint.org.
* - See, {@link https://eslint.org/docs/latest/rules#layout--formatting}.
*
* - The best practices outlined in `eslint-config-airbnb-base@19.0.4`.
* - See, {@link https://github.com/airbnb/javascript/tree/eslint-config-airbnb-v19.0.4/packages/eslint-config-airbnb-base/rules}.
*/
// --------------------------------------------------------------------------------
// Exports
// --------------------------------------------------------------------------------
module.exports = {
/**
* Require or disallow Unicode byte order mark (BOM).
*
* @link eslint: {@link https://eslint.org/docs/latest/rules/unicode-bom}
* @link airbnb-base: {@link https://github.com/airbnb/javascript/blob/eslint-config-airbnb-v19.0.4/packages/eslint-config-airbnb-base/rules/style.js#L521}
*/
'unicode-bom': ['error', 'never'],
};