Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Chore: Mark config-related files (refs #13481) (#13597)
* Chore: Mark config-related files (refs #13481)

* Fix lint errors

* Fix more linting errors
  • Loading branch information
nzakas committed Aug 21, 2020
1 parent 66442a9 commit 2bee6d2
Show file tree
Hide file tree
Showing 25 changed files with 304 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/CODEOWNERS.md
@@ -0,0 +1,17 @@
# Config-related files

lib/conf/config-schema.js @nzakas
lib/cli-engine/config-array/* @nzakas
lib/cli-engine/config-array-factory.js @nzakas
lib/cli-engine/cascading-config-array-factory.js @nzakas
lib/shared/config-* @nzakas
lib/shared/naming.js @nzakas
lib/shared/relative-module-resolver.js @nzakas

tests/lib/conf/config-schema.js @nzakas
tests/lib/cli-engine/config-array/* @nzakas
tests/lib/cli-engine/config-array-factory.js @nzakas
tests/lib/cli-engine/cascading-config-array-factory.js @nzakas
tests/lib/shared/config-* @nzakas
tests/lib/shared/naming.js @nzakas
tests/lib/shared/relative-module-resolver.js @nzakas
12 changes: 12 additions & 0 deletions conf/config-schema.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Defines a schema for configs.
* @author Sylvan Mably
Expand Down
12 changes: 12 additions & 0 deletions conf/environments.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Defines environment settings and globals.
* @author Elan Shanker
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/cascading-config-array-factory.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `CascadingConfigArrayFactory` class.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array-factory.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview The factory of `ConfigArray` objects.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array/config-array.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `ConfigArray` class.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array/config-dependency.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `ConfigDependency` class.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array/extracted-config.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `ExtractedConfig` class.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array/ignore-pattern.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `IgnorePattern` class.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array/index.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `ConfigArray` class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions lib/cli-engine/config-array/override-tester.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview `OverrideTester` class.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/shared/config-ops.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Config file operations. This file must be usable in the browser,
* so no Node-specific code can be here.
Expand Down
12 changes: 12 additions & 0 deletions lib/shared/config-validator.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Validates configs.
* @author Brandon Mills
Expand Down
12 changes: 12 additions & 0 deletions lib/shared/naming.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Common helpers for naming of plugins, formatters and configs
*/
Expand Down
12 changes: 12 additions & 0 deletions lib/shared/relative-module-resolver.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* Utility for resolving a module relative to another module
* @author Teddy Katz
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/cli-engine/cascading-config-array-factory.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for CascadingConfigArrayFactory class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/cli-engine/config-array-factory.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for ConfigArrayFactory class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/cli-engine/config-array/config-array.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for ConfigArray class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/cli-engine/config-array/config-dependency.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for ConfigDependency class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/cli-engine/config-array/extracted-config.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for ExtractedConfig class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/cli-engine/config-array/ignore-pattern.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for IgnorePattern class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
11 changes: 11 additions & 0 deletions tests/lib/cli-engine/config-array/override-tester.js
@@ -1,3 +1,14 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/
/**
* @fileoverview Tests for OverrideTester class.
* @author Toru Nagashima <https://github.com/mysticatea>
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/shared/config-ops.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for ConfigOps
* @author Nicholas C. Zakas
Expand Down
12 changes: 12 additions & 0 deletions tests/lib/shared/config-validator.js
@@ -1,3 +1,15 @@
/*
* STOP!!! DO NOT MODIFY.
*
* This file is part of the ongoing work to move the eslintrc-style config
* system into the @eslint/eslintrc package. This file needs to remain
* unchanged in order for this work to proceed.
*
* If you think you need to change this file, please contact @nzakas first.
*
* Thanks in advance for your cooperation.
*/

/**
* @fileoverview Tests for config validator.
* @author Brandon Mills
Expand Down

0 comments on commit 2bee6d2

Please sign in to comment.