ALEXEY SHPAKOV | ATLASSIAN
Stricter: ESlint for projects
200+ monthly
contributors
In different timezones and
remote
Jira Frontend
1.5M+ lines of code
And growing
30+ teams
With different goals
🍊Tangerine
Through guidelines defines the ideal shape
of the repo
ESlint
Code style
Automating the guidelines
?
Application structure
Prettier
Code formatting
Is a tool to analyse dependency
graph and project structure and
report on bad patterns.
STRICTER
https://github.com/stricter/stricter
Scan files
Caches data to speed
up subsequent runs
Build a
dependencies graph
Uses babel to parse files
and node dependency
resolution algorithm
Run rules
Supports blacklist
and whitelist
Report results
Supports console,
mocha, junit
How stricter works
CIRCULAR-DEPENDENCIES (OPEN-SOURCE)
view
├─component-a.js
└─component-b.js
state
├─selectors.js
└─actions.js
UNUSED-FILES (OPEN-SOURCE)
├─entry-point.js
├─component.js
├─test.js
├─story.js
└─mocks.js Are mocks used by tests/stories for
orphaned functionality?
Does it test orphaned functionality?
Does it showcase orphaned functionality?
Is it orphaned?
PROJECT-STRUCTURE
config: {
definitions: {
'.': 'app',
app: {
view: 'view',
state: { type: DIR, optional: true },
'index.js': FILE,
'test.js': FILE,
},
view: {
'index.js': FILE,
'view.js': { type: FILE, optional: true },
'test.js': { type: FILE, optional: true },
assets: { type: DIR, optional: true },
'*': 'view',
},
},
},
└─foo
├─index.js
├─test.js
└─view
├─index.js
└─component-bar
├─index.js
└─assets
└─component-baz
└─assets
Missing index.js
PURELY-DUMB-COMPONENTS
container-a.js
presentational.js
container-b.js
presentational.js is not allowed
to import container-b.js
FLOW-DEPENDENCY-REQUIREMENT
foo.js // no flow
bar.js // flow
baz.js // no flow
foo.js is not allowed
to import bar.js
MANIFEST-VALIDATION
{
"contactStaffId": "Homer",
"team": "Simpsons",
"slackChannel": “#simpsons",
"jiraProjectUrl": “http://example.com",
"maintainers": ["Bart", "Liza"]
}
Sample manifest.json
└─foo
├─index.js
├─test.js
├─manifest.json
└─bar
├─index.js
└─test.js
└─baz
├─index.js
└─test.js
Missing
manifest.json
TANGERINE-APP-ENFORCER/TANGERINE-DEPENDENCIES
└─app-foo
└─index.js
└─app-bar
├─index.js
└─view
├─index.js
└─baz
└─index.js
app-foo/index.js could only
access app-bar/index.js
app-bar/view/baz/index.js
could not reach out upwards
More rules
Coming soon
Typescript support
Improved documentation
Extension for VS Code
Test coverage
One more thing
FASTER BUILDS
Use stricter to
speed up your
branch builds
parseDependencies(files: string[]): FileToDependency
LINKS
https://github.com/stricter/stricter
Thank you

More Related Content

PDF
Integrate with Tracing and Logging
PPTX
Doctrine Data migrations | May 2017
PDF
GraphX is the blue ocean for scala engineers @ Scala Matsuri 2014
PDF
Exop ❤️ StreamData
PPTX
Apache Spark GraphX highlights.
PDF
OpenML Tutorial ECMLPKDD 2015
PDF
Jira Frontend Delivery
PDF
Visual regression testing: easier than you think
Integrate with Tracing and Logging
Doctrine Data migrations | May 2017
GraphX is the blue ocean for scala engineers @ Scala Matsuri 2014
Exop ❤️ StreamData
Apache Spark GraphX highlights.
OpenML Tutorial ECMLPKDD 2015
Jira Frontend Delivery
Visual regression testing: easier than you think

Recently uploaded (20)

PDF
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
PDF
AI/ML Infra Meetup | LLM Agents and Implementation Challenges
PDF
Website Design Services for Small Businesses.pdf
PDF
DuckDuckGo Private Browser Premium APK for Android Crack Latest 2025
PDF
E-Commerce Website Development Companyin india
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PDF
AI/ML Infra Meetup | Beyond S3's Basics: Architecting for AI-Native Data Access
DOC
UTEP毕业证学历认证,宾夕法尼亚克拉里恩大学毕业证未毕业
PPTX
Airline CRS | Airline CRS Systems | CRS System
PDF
Wondershare Recoverit Full Crack New Version (Latest 2025)
PPTX
Cybersecurity-and-Fraud-Protecting-Your-Digital-Life.pptx
PPTX
Download Adobe Photoshop Crack 2025 Free
PPTX
Matchmaking for JVMs: How to Pick the Perfect GC Partner
PPTX
CNN LeNet5 Architecture: Neural Networks
PDF
iTop VPN Crack Latest Version Full Key 2025
PPTX
MLforCyber_MLDataSetsandFeatures_Presentation.pptx
PPTX
Cybersecurity: Protecting the Digital World
PPTX
Tech Workshop Escape Room Tech Workshop
PDF
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
PDF
The Dynamic Duo Transforming Financial Accounting Systems Through Modern Expe...
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
AI/ML Infra Meetup | LLM Agents and Implementation Challenges
Website Design Services for Small Businesses.pdf
DuckDuckGo Private Browser Premium APK for Android Crack Latest 2025
E-Commerce Website Development Companyin india
Advanced SystemCare Ultimate Crack + Portable (2025)
AI/ML Infra Meetup | Beyond S3's Basics: Architecting for AI-Native Data Access
UTEP毕业证学历认证,宾夕法尼亚克拉里恩大学毕业证未毕业
Airline CRS | Airline CRS Systems | CRS System
Wondershare Recoverit Full Crack New Version (Latest 2025)
Cybersecurity-and-Fraud-Protecting-Your-Digital-Life.pptx
Download Adobe Photoshop Crack 2025 Free
Matchmaking for JVMs: How to Pick the Perfect GC Partner
CNN LeNet5 Architecture: Neural Networks
iTop VPN Crack Latest Version Full Key 2025
MLforCyber_MLDataSetsandFeatures_Presentation.pptx
Cybersecurity: Protecting the Digital World
Tech Workshop Escape Room Tech Workshop
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
The Dynamic Duo Transforming Financial Accounting Systems Through Modern Expe...
Ad
Ad

Stricter: ESlint for projects