mirror of
https://github.com/nordtheme/vim.git
synced 2026-09-10 07:36:23 -04:00
With the retirement of the "Arctic Ice Studio" personal & Nord project brand [1] various migrations to the `svengreb` GitHub account [2] of other projects were also completed within the last weeks. There are also changes in Nord projects like `nordtheme/web` that other projects depended on and can now be adapted as well. Therefore all Nord projects must adapt these changes which includes... - the migration and repository name change of `arcticicestudio/nord-docs`[2] - all references must be updated. - the migration of the `arcticicestudio/styleguide-git` repository to the `svengreb` "real-in-person" identity [3] - all references and used npm packages must be updated. - the migration of the `arcticicestudio/styleguide-javascript` repository to the `svengreb` "real-in-person" identity [4] - all references and used npm packages must be updated. - the migration of the `arcticicestudio/styleguide-markdown` repository to the `svengreb` "real-in-person" identity [5] - all references and used npm packages must be updated. [1]: https://github.com/orgs/nordtheme/discussions/183#retire-arctic-ice-studio-as-nord-brand [2]: https://github.com/nordtheme/web/issues/241 [3]: https://github.com/svengreb/styleguide-git/issues/12 [4]: https://github.com/svengreb/styleguide-javascript/issues/88 [5]: https://github.com/svengreb/styleguide-markdown/issues/63 GH-341
33 lines
1,023 B
JavaScript
33 lines
1,023 B
JavaScript
/*
|
|
* Copyright (c) 2016-present Sven Greb <development@svengreb.de>
|
|
* This source code is licensed under the Creative Commons Attribution-ShareAlike 4.0 International license found in the license file.
|
|
*/
|
|
|
|
/**
|
|
* Configurations for ESLint.
|
|
* @see https://eslint.org/docs/latest/use/configure
|
|
* @see https://eslint.org/docs/latest/use/configure/#using-configuration-files
|
|
* @see https://eslint.org/docs/latest/use/configure/#specifying-environments
|
|
* @see https://eslint.org/docs/latest/rules
|
|
*/
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"@svengreb/eslint-config-base",
|
|
/*
|
|
* Enable support for projects using Prettier.
|
|
* Note that this must always be placed after the `@svengreb/eslint-config-base` preset to take precedence, otherwise it won't prevent errors
|
|
* due to useless and possibly conflicting rules!
|
|
*/
|
|
"@svengreb/eslint-config-base/prettier",
|
|
],
|
|
overrides: [
|
|
{
|
|
files: ["*.js"],
|
|
rules: {
|
|
"capitalized-comments": "off",
|
|
},
|
|
},
|
|
],
|
|
};
|