Introduce an `octane` configuration
See original GitHub issueRecently ember-cli-template introduced an octane
configuration which guides users to use new Octane patterns over classic component patterns.
We should introduce the same here for eslint-plugin-ember. I’d be happy to put together a PR introducing the config but we should figure out:
- What rules should be included in the config
- What rules are we currently missing?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:10 (9 by maintainers)
Top Results From Across the Web
Introducing ALM Octane - ADM Help Centers
ALM Octane is a web-based application lifecycle management platform that ... users can work with ALM Octane, the admin needs to perform initial...
Read more >Laravel Octane
This is going to publish the Octane configuration file, as well as add rr - the RoadRunner binary, to the .gitignore file.
Read more >How to Learn Octane: The Ultimate Octane Tutorial (2022)
To install Octane, log into your Otoy account, download the application, and run the installer. Launch the app, and you'll be asked to...
Read more >Laravel Octane - Laravel - The PHP Framework For Web ...
Introduction; Installation; Server Prerequisites ... When this configuration value is set to true , Octane will instruct Laravel to prefix all generated ...
Read more >Getting Started with Octane for Cinema 4D
This can be changed to the default C4D color picker by clicking the Settings (gear) icon in the Live Viewer, then going to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Some possible ideas:
actions
hash (favoring instead,@action
orfoo: action(function() {})
)@chancancode / @pzuraq / @Turbo87 / @bmish - Thoughts?
So collating this list from the above comments we have:
actions
hash (favoring instead,@action
orfoo: action(function() {}))
didInsertElement/willDestroyElement()
(in favor of modifiers in general)only-tagless-components
(allows@glimmer/component
base class, ortagName: ''
if@ember/component
)@ember/component
base classTwo I was thinking of were:
@tracked
only-tagless-components
idea above but instead being no classic components at allI guess if there is agreement that all of these rules are useful I could create issues for each of them and myself and possibly others could work through the list. Then at the end figure out what needs to go into the actual
octane
config file.