diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..c69f74e2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +dist/** linguist-generated diff --git a/package.json b/package.json index e7b1d90c..bb37d286 100644 --- a/package.json +++ b/package.json @@ -27,11 +27,11 @@ "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-node-resolve": "^16.0.1", "chrome-launcher": "^1.1.2", - "eslint": "^9.23.0", + "eslint": "^9.25.1", "eslint-plugin-compat": "^6.0.2", "neostandard": "^0.12.1", - "puppeteer-core": "^24.4.0", - "rollup": "^4.36.0", + "puppeteer-core": "^24.7.2", + "rollup": "^4.40.0", "rollup-plugin-copy": "^3.5.0" }, "peerDependencies": { diff --git a/test/action_view/cases/helper.rb b/test/action_view/cases/helper.rb index e7158972..d18f2f58 100644 --- a/test/action_view/cases/helper.rb +++ b/test/action_view/cases/helper.rb @@ -192,7 +192,7 @@ def whole_form_for(action = 'http://www.example.com', id = nil, html_class = nil method = options end - form_for_text(action, id, html_class, remote, (validators || no_validate), file) << snowman(method) << (contents || '') << '' + form_for_text(action, id, html_class, remote, validators || no_validate, file) << snowman(method) << (contents || '') << '' end def form_with_text(action = 'http://www.example.com', id = nil, html_class = nil, local = nil, validators = nil, file = nil) @@ -221,7 +221,7 @@ def whole_form_with(action = 'http://www.example.com', options = nil) method = options end - form_with_text(action, id, html_class, local, (validators || no_validate), file) << snowman(method) << (contents || '') << '' + form_with_text(action, id, html_class, local, validators || no_validate, file) << snowman(method) << (contents || '') << '' end def client_side_form_settings_helper