From 734aed879e769a40e4dbc929e14d580f00b9b718 Mon Sep 17 00:00:00 2001 From: Hartley McGuire Date: Tue, 31 Jan 2023 16:43:15 -0500 Subject: [PATCH] Rm configuration files from old ujs infrastructure The coffeelint file is unused since rails-ujs was converted from coffescript to esm in 7631d63714f4c7b49600b60f1338ac511de6d86d The blade configuration is unused since the rails-ujs tests were converted to karma in d9e79ce7f4eb86a8f74c0f583c3fc0105c399a71 --- actionview/blade.yml | 5 -- actionview/coffeelint.json | 135 ------------------------------------- 2 files changed, 140 deletions(-) delete mode 100644 actionview/blade.yml delete mode 100644 actionview/coffeelint.json diff --git a/actionview/blade.yml b/actionview/blade.yml deleted file mode 100644 index 12f60ab3784b6..0000000000000 --- a/actionview/blade.yml +++ /dev/null @@ -1,5 +0,0 @@ -load_paths: - - app/assets/javascripts - -logical_paths: - - rails-ujs.js diff --git a/actionview/coffeelint.json b/actionview/coffeelint.json deleted file mode 100644 index cf8bf2171bb84..0000000000000 --- a/actionview/coffeelint.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "arrow_spacing": { - "level": "warn" - }, - "braces_spacing": { - "level": "warn", - "spaces": 1, - "empty_object_spaces": 0 - }, - "camel_case_classes": { - "level": "error" - }, - "coffeescript_error": { - "level": "error" - }, - "colon_assignment_spacing": { - "level": "warn", - "spacing": { - "left": 0, - "right": 1 - } - }, - "cyclomatic_complexity": { - "level": "warn", - "value": 10 - }, - "duplicate_key": { - "level": "error" - }, - "empty_constructor_needs_parens": { - "level": "warn" - }, - "ensure_comprehensions": { - "level": "warn" - }, - "eol_last": { - "level": "warn" - }, - "indentation": { - "value": 2, - "level": "error" - }, - "line_endings": { - "level": "warn", - "value": "unix" - }, - "max_line_length": { - "value": 80, - "level": "ignore", - "limitComments": true - }, - "missing_fat_arrows": { - "level": "ignore" - }, - "newlines_after_classes": { - "value": 3, - "level": "warn" - }, - "no_backticks": { - "level": "error" - }, - "no_debugger": { - "level": "warn", - "console": false - }, - "no_empty_functions": { - "level": "warn" - }, - "no_empty_param_list": { - "level": "warn" - }, - "no_implicit_braces": { - "level": "ignore", - "strict": true - }, - "no_implicit_parens": { - "level": "ignore", - "strict": true - }, - "no_interpolation_in_single_quotes": { - "level": "warn" - }, - "no_nested_string_interpolation": { - "level": "warn" - }, - "no_plusplus": { - "level": "warn" - }, - "no_private_function_fat_arrows": { - "level": "warn" - }, - "no_stand_alone_at": { - "level": "warn" - }, - "no_tabs": { - "level": "error" - }, - "no_this": { - "level": "warn" - }, - "no_throwing_strings": { - "level": "error" - }, - "no_trailing_semicolons": { - "level": "error" - }, - "no_trailing_whitespace": { - "level": "error", - "allowed_in_comments": false, - "allowed_in_empty_lines": true - }, - "no_unnecessary_double_quotes": { - "level": "warn" - }, - "no_unnecessary_fat_arrows": { - "level": "warn" - }, - "non_empty_constructor_needs_parens": { - "level": "warn" - }, - "prefer_english_operator": { - "level": "ignore", - "doubleNotLevel": "warn" - }, - "space_operators": { - "level": "warn" - }, - "spacing_after_comma": { - "level": "warn" - }, - "transform_messes_up_line_numbers": { - "level": "warn" - } -} -