Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// ESLintの構文エラー回避のため、一時的に追加しています
// ecmaVersion: 2020ではstaticに対応していないため、
// 別issueでecmaVersion: 2022に対応してもらいます
app/javascript/controllers/report_template_controller.js
86 changes: 0 additions & 86 deletions app/javascript/components/ReportTemplate.jsx

This file was deleted.

185 changes: 0 additions & 185 deletions app/javascript/components/ReportTemplateModal.jsx

This file was deleted.

9 changes: 9 additions & 0 deletions app/javascript/controllers/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Load all the controllers within this directory and all subdirectories.
// Controller files must be named *_controller.js.

import { Application } from 'stimulus'
import { definitionsFromContext } from 'stimulus/webpack-helpers'

const application = Application.start()
const context = require.context('controllers', true, /_controller\.js$/)
application.load(definitionsFromContext(context))
Loading