style: Move isort configuration to pyproject.toml
- [x] Remove flake8-import-order checks, as we only need isort for this - [x] Clean up configuration and requirements
This commit is contained in:
		
							
								
								
									
										14
									
								
								pyproject.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								pyproject.toml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| [tool.isort] | ||||
| profile = "black" | ||||
| sections = [ | ||||
|   "FUTURE", | ||||
|   "STDLIB", | ||||
|   "THIRDPARTY", | ||||
|   "ARCHSPEC", "LLNL", "FIRSTPARTY", | ||||
|   "LOCALFOLDER", | ||||
| ] | ||||
| known_first_party = "spack" | ||||
| known_archspec = "archspec" | ||||
| known_llnl = "llnl" | ||||
| src_paths = "lib" | ||||
| honor_noqa = true | ||||
		Reference in New Issue
	
	Block a user
	 Todd Gamblin
					Todd Gamblin