Found backslash that is used for line breaking
Found backslash that is used for line breaking
Typo: «Found backslash that is used for line breaking» about flake8-broken-line HOT 2 CLOSED
Comments (2)
Fixed in f5de297 but not yet in a release on PyPI
sobolevn commented on June 27, 2019
Thanks! I don’t want to release a documentation only change.
I will wait for the feature / bugfix to release something meaningful.
Related Issues (18)
Recommend Projects
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.
zealotous / flake8-broken-line Goto Github PK
🚨 Flake8 plugin to forbid backslashes (\) for line breaks
License: MIT License
flake8-broken-line’s Introduction
Do not break the line! 🚨
Things we check with this plugin:
Error code | Description |
---|---|
N400 | Found backslash that is used for line braking |
flake8-broken-line’s People
Contributors
Recommend Projects
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.
Broken line in triple quotes about flake8-broken-line HOT 4 CLOSED
So i have E501 (line to long). This is not so beautiful, so i change:
And now i have N400 (Found backslash that is used for line braking)
What should i do on this?
Comments (4)
Another example. In some case very useful write this:
sobolevn commented on January 30, 2019 1
I try to separate long text into meaningful parts.
Formulas can be rewritten with parens, long paragraphs can be split, URLs can be shortened, etc.
sobolevn commented on January 30, 2019 1
In case this does not help: create a new file with long strings and disable this warning for this file.
dyens commented on January 31, 2019
Thx u for answer.
Related Issues (18)
Recommend Projects
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.
wemake-services / flake8-broken-line Goto Github PK
🚨 Flake8 plugin to forbid backslashes (\) for line breaks
License: MIT License
flake8-broken-line’s Introduction
Do not break the line! 🚨
Things we check with this plugin:
Error code | Description |
---|---|
N400 | Found backslash that is used for line breaking |
Recommend Projects
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.
[N400] How to short imports? about flake8-broken-line HOT 3 CLOSED
If I have a long import then how should I short it?
I have this:
And it is longer than 100 symbols in one line. Isort does the following for me:
And I got: N400: Found backslash that is used for line breaking
Comments (3)
NotFunnyMan commented on June 6, 2022
Thanks for response 🙂
Yes. I tried it. But. It conflicts with I001 rule (isort found an import in the wrong position:):
Maybe do you know how to skip it? I mean the suggestion to make import through a line break.
@sobolevn
sobolevn commented on June 7, 2022 1
Related Issues (18)
Recommend Projects
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.