immosquare-cleaner 0.1.63 → 0.1.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +2 -2
  4. data/linters/rubocop/cop/custom_cops/style/font_awesome_normalization.rb +104 -0
  5. data/linters/rubocop-3.4.1.yml +3 -1
  6. data/linters/rubocop.yml +4 -0
  7. data/node_modules/@eslint/config-helpers/LICENSE +201 -0
  8. data/node_modules/@eslint/config-helpers/README.md +97 -0
  9. data/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +546 -0
  10. data/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +22 -0
  11. data/node_modules/@eslint/config-helpers/dist/cjs/types.cts +31 -0
  12. data/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +22 -0
  13. data/node_modules/@eslint/config-helpers/dist/esm/index.js +544 -0
  14. data/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  15. data/node_modules/@eslint/config-helpers/dist/esm/types.ts +31 -0
  16. data/node_modules/@eslint/config-helpers/package.json +60 -0
  17. data/node_modules/@eslint/js/package.json +1 -1
  18. data/node_modules/eslint/README.md +6 -4
  19. data/node_modules/eslint/lib/config-api.js +12 -0
  20. data/node_modules/eslint/lib/languages/js/source-code/source-code.js +18 -14
  21. data/node_modules/eslint/lib/rules/no-console.js +19 -11
  22. data/node_modules/eslint/lib/rules/no-native-reassign.js +1 -1
  23. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +1 -1
  24. data/node_modules/eslint/lib/types/config-api.d.ts +8 -0
  25. data/node_modules/eslint/lib/types/rules.d.ts +5199 -0
  26. data/node_modules/eslint/package.json +14 -6
  27. data/node_modules/eslint-scope/README.md +4 -3
  28. data/node_modules/eslint-scope/dist/eslint-scope.cjs +59 -2
  29. data/node_modules/eslint-scope/lib/index.js +1 -0
  30. data/node_modules/eslint-scope/lib/referencer.js +52 -0
  31. data/node_modules/eslint-scope/lib/scope-manager.js +4 -0
  32. data/node_modules/eslint-scope/lib/scope.js +1 -1
  33. data/node_modules/eslint-scope/lib/version.js +1 -1
  34. data/node_modules/eslint-scope/package.json +1 -1
  35. data/package.json +2 -2
  36. metadata +16 -11
  37. data/node_modules/eslint/lib/types/rules/best-practices.d.ts +0 -1143
  38. data/node_modules/eslint/lib/types/rules/deprecated.d.ts +0 -252
  39. data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +0 -647
  40. data/node_modules/eslint/lib/types/rules/index.d.ts +0 -50
  41. data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +0 -171
  42. data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +0 -685
  43. data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +0 -38
  44. data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +0 -2043
  45. data/node_modules/eslint/lib/types/rules/variables.d.ts +0 -234
@@ -1,38 +0,0 @@
1
- /**
2
- * @fileoverview This file contains the rule types for ESLint. It was initially extracted
3
- * from the `@types/eslint` package.
4
- */
5
-
6
- /*
7
- * MIT License
8
- * Copyright (c) Microsoft Corporation.
9
- *
10
- * Permission is hereby granted, free of charge, to any person obtaining a copy
11
- * of this software and associated documentation files (the "Software"), to deal
12
- * in the Software without restriction, including without limitation the rights
13
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- * copies of the Software, and to permit persons to whom the Software is
15
- * furnished to do so, subject to the following conditions:
16
- * The above copyright notice and this permission notice shall be included in all
17
- * copies or substantial portions of the Software.
18
- *
19
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
- * SOFTWARE
26
- */
27
-
28
- import { Linter } from "../index";
29
-
30
- export interface StrictMode extends Linter.RulesRecord {
31
- /**
32
- * Rule to require or disallow strict mode directives.
33
- *
34
- * @since 0.1.0
35
- * @see https://eslint.org/docs/latest/rules/strict
36
- */
37
- strict: Linter.RuleEntry<["safe" | "global" | "function" | "never"]>;
38
- }